$Bool =
wave.SetTag ("<Wave Filename >", "<Tag>", "<Remark>")
Used to add a tag/label within the wave file.
Parameters
<Wave Filename>
Specify the name or the path of the wave file.
<Tag>
Indicates the name of the label. Specify only 4 alphanumeric characters.
<Remark>
Comment to be added along with the tag.
Return Value
Returns 1 if success, else returns 0.
Example
$value = wave.SetTag("welcome.wav","CALL","Call Accepted")
msgbox($value)
- A tag named CALL is added within the welcome.wav file
followed by a remark as "Call Accepted".
- $value contains 1.